home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / dev / hbatest.h < prev    next >
C/C++ Source or Header  |  1989-09-12  |  1KB  |  38 lines

  1. /*
  2.  * hbatest.h --
  3.  *
  4.  *    Declarations of SCSI HBA disk test IOControl interface.
  5.  *    This device is used to test HBA and disk by the RAID people.
  6.  *    Mendel - 9/12/89
  7.  *
  8.  * Copyright 1989 Regents of the University of California
  9.  * Permission to use, copy, modify, and distribute this
  10.  * software and its documentation for any purpose and without
  11.  * fee is hereby granted, provided that the above copyright
  12.  * notice appear in all copies.  The University of California
  13.  * makes no representations about the suitability of this
  14.  * software for any purpose.  It is provided "as is" without
  15.  * express or implied warranty.
  16.  *
  17.  * $Header: /sprite/lib/forms/RCS/proto.h,v 1.2 89/01/07 04:12:44 rab Exp $ SPRITE (Berkeley)
  18.  */
  19.  
  20. #ifndef _HBATEST
  21. #define _HBATEST
  22.  
  23. #define IOC_HBA_DISK_IO_TEST     (3 << 16)
  24. #define IOC_HBA_DISK_UNIT_TEST  ((3 << 16) | 1)
  25.  
  26.  
  27. typedef struct DevHBADiskTest {
  28.     unsigned int   firstSector;        /* First sector of operation. */
  29.     unsigned short lengthInSectors;     /* Number of sectors for operation. */
  30.     unsigned short writeOperation;    /* TRUE if write operation, FALSE if
  31.                      * read. */
  32. } DevHBADiskTest;
  33.  
  34. #define    MAX_HBA_TEST_VECTOR    (4096/sizeof(DevHBADiskTest))
  35. #define    MAX_HBA_UNIT_TESTS        2000
  36.  
  37. #endif
  38.